home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 5 / Gold Medal Software - Volume 5 (Gold Medal) (1995).iso / prog / rukc110.arj / BORLAND.ZIP / INSTALLB.BAT < prev    next >
DOS Batch File  |  1994-10-21  |  1KB  |  32 lines

  1. @echo off
  2. REM use /B for mono video systems, as in INSTALL /b
  3. cls
  4. echo RUCKUS 1.1 Install for Borland C/C++ Compilers
  5. echo.
  6. echo To install RUCKUS, the library files must first be extracted and built.
  7. echo Two install runs are made: one each for RUCKUS-DAC and RUCKUS-MIDI.
  8. echo These files are for large- or huge-model use only, and only needed by
  9. echo Borland C/C++ compilers when using these memory models. For medium-
  10. echo model use, the standard library files should be used.  This patch
  11. echo makes use of the RTL function farmalloc()/farfree().
  12. echo.
  13. echo The library files created are similar to the standard files except
  14. echo that the filename end with an L: RUCKDAC.LIB is RUCKDACL.LIB, and
  15. echo RUCKMIDI.LIB is RUCKMIDL.LIB.
  16. echo.
  17. pause
  18. instruck RUCKDACL %1
  19. if errorlevel==1 goto nogo
  20. instruck RUCKMIDL %1
  21. if errorlevel==1 goto nogo
  22. echo.
  23. echo Installation was a success. Refer to the documentation under Appendix C.
  24. echo for further installation procedures."
  25. echo.
  26. goto endit
  27. :nogo
  28. echo.
  29. echo Installation failed to complete. 
  30. :endit
  31.  
  32.